home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / FLEX / FLEX~ / man / flex_txt < prev    next >
Text File  |  1989-04-15  |  24KB  |  660 lines

  1.  
  2.  
  3.  
  4.    26 May 1990                                                        FLEX(1)
  5.  
  6.  
  7.  
  8.    NAME
  9.      flex - fast lexical analyzer generator
  10.  
  11.    SYNOPSIS
  12.      flex [-bcdfinpstvFILT8 -C[efmF] -Sskeleton] [filename ...]
  13.  
  14.    DESCRIPTION
  15.      flex is a tool for generating scanners: programs which recognized lexi-
  16.      cal patterns in text.  flex reads the given input files, or its standard
  17.      input if no file names are given, for a description of a scanner to gen-
  18.      erate.  The description is in the form of pairs of regular expressions
  19.      and C code, called rules. flex generates as output a C source file,
  20.      lex.yy.c, which defines a routine yylex(). This file is compiled and
  21.      linked with the -lfl library to produce an executable.  When the execut-
  22.      able is run, it analyzes its input for occurrences of the regular
  23.      expressions.  Whenever it finds one, it executes the corresponding C
  24.      code.
  25.  
  26.      For full documentation, see flexdoc(1). This manual entry is intended
  27.      for use as a quick reference.
  28.  
  29.    OPTIONS
  30.      flex has the following options:
  31.  
  32.      -b   Generate backtracking information to lex.backtrack. This is a list
  33.           of scanner states which require backtracking and the input charac-
  34.           ters on which they do so.  By adding rules one can remove back-
  35.           tracking states.  If all backtracking states are eliminated and -f
  36.           or -F is used, the generated scanner will run faster.
  37.  
  38.      -c   is a do-nothing, deprecated option included for POSIX compliance.
  39.  
  40.           NOTE: in previous releases of flex -c specified table-compression
  41.           options.  This functionality is now given by the -C flag.  To ease
  42.           the the impact of this change, when flex encounters -c, it
  43.           currently issues a warning message and assumes that -C was desired
  44.           instead.  In the future this "promotion" of -c to -C will go away
  45.           in the name of full POSIX compliance (unless the POSIX meaning is
  46.           removed first).
  47.  
  48.      -d   makes the generated scanner run in debug mode.  Whenever a pattern
  49.           is recognized and the global yy_flex_debug is non-zero (which is
  50.           the default), the scanner will write to stderr a line of the form:
  51.  
  52.               --accepting rule at line 53 ("the matched text")
  53.  
  54.           The line number refers to the location of the rule in the file
  55.           defining the scanner (i.e., the file that was fed to flex).  Mes-
  56.           sages are also generated when the scanner backtracks, accepts the
  57.           default rule, reaches the end of its input buffer (or encounters a
  58.           NUL; the two look the same as far as the scanner's concerned), or
  59.           reaches an end-of-file.
  60.  
  61.  
  62.  
  63.    Version 2.3                                                              1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.    FLEX(1)                                                        26 May 1990
  71.  
  72.  
  73.      -f   specifies (take your pick) full table or fast scanner. No table
  74.           compression is done.  The result is large but fast.  This option is
  75.           equivalent to -Cf (see below).
  76.  
  77.      -i   instructs flex to generate a case-insensitive scanner.  The case of
  78.           letters given in the flex input patterns will be ignored, and
  79.           tokens in the input will be matched regardless of case.  The
  80.           matched text given in yytext will have the preserved case (i.e., it
  81.           will not be folded).
  82.  
  83.      -n   is another do-nothing, deprecated option included only for POSIX
  84.           compliance.
  85.  
  86.      -p   generates a performance report to stderr.  The report consists of
  87.           comments regarding features of the flex input file which will cause
  88.           a loss of performance in the resulting scanner.
  89.  
  90.      -s   causes the default rule (that unmatched scanner input is echoed to
  91.           stdout) to be suppressed.  If the scanner encounters input that
  92.           does not match any of its rules, it aborts with an error.
  93.  
  94.      -t   instructs flex to write the scanner it generates to standard output
  95.           instead of lex.yy.c.
  96.  
  97.      -v   specifies that flex should write to stderr a summary of statistics
  98.           regarding the scanner it generates.
  99.  
  100.      -F   specifies that the fast scanner table representation should be
  101.           used.  This representation is about as fast as the full table
  102.           representation (-f), and for some sets of patterns will be consid-
  103.           erably smaller (and for others, larger).  See flexdoc(1) for
  104.           details.
  105.  
  106.           This option is equivalent to -CF (see below).
  107.  
  108.      -I   instructs flex to generate an interactive scanner, that is, a
  109.           scanner which stops immediately rather than looking ahead if it
  110.           knows that the currently scanned text cannot be part of a longer
  111.           rule's match.  Again, see flexdoc(1) for details.
  112.  
  113.           Note, -I cannot be used in conjunction with full or fast tables,
  114.           i.e., the -f, -F, -Cf, or -CF flags.
  115.  
  116.      -L   instructs flex not to generate #line directives in lex.yy.c. The
  117.           default is to generate such directives so error messages in the
  118.           actions will be correctly located with respect to the original flex
  119.           input file, and not to the fairly meaningless line numbers of
  120.           lex.yy.c.
  121.  
  122.      -T   makes flex run in trace mode.  It will generate a lot of messages
  123.           to stdout concerning the form of the input and the resultant non-
  124.           deterministic and deterministic finite automata.  This option is
  125.           mostly for use in maintaining flex.
  126.  
  127.  
  128.  
  129.    2                                                              Version 2.3
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.    26 May 1990                                                        FLEX(1)
  137.  
  138.  
  139.      -8   instructs flex to generate an 8-bit scanner.  On some sites, this
  140.           is the default.  On others, the default is 7-bit characters.  To
  141.           see which is the case, check the verbose (-v) output for
  142.           "equivalence classes created".  If the denominator of the number
  143.           shown is 128, then by default flex is generating 7-bit characters.
  144.           If it is 256, then the default is 8-bit characters.
  145.  
  146.      -C[efmF]
  147.           controls the degree of table compression.
  148.  
  149.           -Ce directs flex to construct equivalence classes, i.e., sets of
  150.           characters which have identical lexical properties.  Equivalence
  151.           classes usually give dramatic reductions in the final table/object
  152.           file sizes (typically a factor of 2-5) and are pretty cheap
  153.           performance-wise (one array look-up per character scanned).
  154.  
  155.           -Cf specifies that the full scanner tables should be generated -
  156.           flex should not compress the tables by taking advantages of similar
  157.           transition functions for different states.
  158.  
  159.           -CF specifies that the alternate fast scanner representation
  160.           (described in flexdoc(1)) should be used.
  161.  
  162.           -Cm directs flex to construct meta-equivalence classes, which are
  163.           sets of equivalence classes (or characters, if equivalence classes
  164.           are not being used) that are commonly used together.  Meta-
  165.           equivalence classes are often a big win when using compressed
  166.           tables, but they have a moderate performance impact (one or two
  167.           "if" tests and one array look-up per character scanned).
  168.  
  169.           A lone -C specifies that the scanner tables should be compressed
  170.           but neither equivalence classes nor meta-equivalence classes should
  171.           be used.
  172.  
  173.           The options -Cf or -CF and -Cm do not make sense together - there
  174.           is no opportunity for meta-equivalence classes if the table is not
  175.           being compressed.  Otherwise the options may be freely mixed.
  176.  
  177.           The default setting is -Cem, which specifies that flex should gen-
  178.           erate equivalence classes and meta-equivalence classes.  This set-
  179.           ting provides the highest degree of table compression.  You can
  180.           trade off faster-executing scanners at the cost of larger tables
  181.           with the following generally being true:
  182.  
  183.               slowest & smallest
  184.                     -Cem
  185.                     -Cm
  186.                     -Ce
  187.                     -C
  188.                     -C{f,F}e
  189.                     -C{f,F}
  190.               fastest & largest
  191.  
  192.  
  193.  
  194.  
  195.    Version 2.3                                                              3
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.    FLEX(1)                                                        26 May 1990
  203.  
  204.  
  205.           -C options are not cumulative; whenever the flag is encountered,
  206.           the previous -C settings are forgotten.
  207.  
  208.      -Sskeleton_file
  209.           overrides the default skeleton file from which flex constructs its
  210.           scanners.  You'll never need this option unless you are doing flex
  211.           maintenance or development.
  212.  
  213.    SUMMARY OF FLEX REGULAR EXPRESSIONS
  214.      The patterns in the input are written using an extended set of regular
  215.      expressions.  These are:
  216.  
  217.          x          match the character 'x'
  218.          .          any character except newline
  219.          [xyz]      a "character class"; in this case, the pattern
  220.                       matches either an 'x', a 'y', or a 'z'
  221.          [abj-oZ]   a "character class" with a range in it; matches
  222.                       an 'a', a 'b', any letter from 'j' through 'o',
  223.                       or a 'Z'
  224.          [^A-Z]     a "negated character class", i.e., any character
  225.                       but those in the class.  In this case, any
  226.                       character EXCEPT an uppercase letter.
  227.          [^A-Z\n]   any character EXCEPT an uppercase letter or
  228.                       a newline
  229.          r*         zero or more r's, where r is any regular expression
  230.          r+         one or more r's
  231.          r?         zero or one r's (that is, "an optional r")
  232.          r{2,5}     anywhere from two to five r's
  233.          r{2,}      two or more r's
  234.          r{4}       exactly 4 r's
  235.          {name}     the expansion of the "name" definition
  236.                     (see above)
  237.          "[xyz]\"foo"
  238.                     the literal string: [xyz]"foo
  239.          \X         if X is an 'a', 'b', 'f', 'n', 'r', 't', or 'v',
  240.                       then the ANSI-C interpretation of \x.
  241.                       Otherwise, a literal 'X' (used to escape
  242.                       operators such as '*')
  243.          \123       the character with octal value 123
  244.          \x2a       the character with hexadecimal value 2a
  245.          (r)        match an r; parentheses are used to override
  246.                       precedence (see below)
  247.  
  248.  
  249.          rs         the regular expression r followed by the
  250.                       regular expression s; called "concatenation"
  251.  
  252.  
  253.          r|s        either an r or an s
  254.  
  255.  
  256.          r/s        an r but only if it is followed by an s.  The
  257.                       s is not part of the matched text.  This type
  258.                       of pattern is called as "trailing context".
  259.  
  260.  
  261.    4                                                              Version 2.3
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.    26 May 1990                                                        FLEX(1)
  269.  
  270.  
  271.          ^r         an r, but only at the beginning of a line
  272.          r$         an r, but only at the end of a line.  Equivalent
  273.                       to "r/\n".
  274.  
  275.  
  276.          <s>r       an r, but only in start condition s (see
  277.                     below for discussion of start conditions)
  278.          <s1,s2,s3>r
  279.                     same, but in any of start conditions s1,
  280.                     s2, or s3
  281.  
  282.  
  283.          <<EOF>>    an end-of-file
  284.          <s1,s2><<EOF>>
  285.                     an end-of-file when in start condition s1 or s2
  286.  
  287.      The regular expressions listed above are grouped according to pre-
  288.      cedence, from highest precedence at the top to lowest at the bottom.
  289.      Those grouped together have equal precedence.
  290.  
  291.      Some notes on patterns:
  292.  
  293.      -    Negated character classes match newlines unless "\n" (or an
  294.           equivalent escape sequence) is one of the characters explicitly
  295.           present in the negated character class (e.g., "[^A-Z\n]").
  296.  
  297.      -    A rule can have at most one instance of trailing context (the '/'
  298.           operator or the '$' operator).  The start condition, '^', and
  299.           "<<EOF>>" patterns can only occur at the beginning of a pattern,
  300.           and, as well as with '/' and '$', cannot be grouped inside
  301.           parentheses.  The following are all illegal:
  302.  
  303.               foo/bar$
  304.               foo|(bar$)
  305.               foo|^bar
  306.               <sc1>foo<sc2>bar
  307.  
  308.  
  309.    SUMMARY OF SPECIAL ACTIONS
  310.      In addition to arbitrary C code, the following can appear in actions:
  311.  
  312.      -    ECHO copies yytext to the scanner's output.
  313.  
  314.      -    BEGIN followed by the name of a start condition places the scanner
  315.           in the corresponding start condition.
  316.  
  317.      -    REJECT directs the scanner to proceed on to the "second best" rule
  318.           which matched the input (or a prefix of the input).  yytext and
  319.           yyleng are set up appropriately.  Note that REJECT is a particu-
  320.           larly expensive feature in terms scanner performance; if it is used
  321.           in any of the scanner's actions it will slow down all of the
  322.           scanner's matching.  Furthermore, REJECT cannot be used with the -f
  323.           or -F options.
  324.  
  325.  
  326.  
  327.    Version 2.3                                                              5
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.    FLEX(1)                                                        26 May 1990
  335.  
  336.  
  337.           Note also that unlike the other special actions, REJECT is a
  338.           branch; code immediately following it in the action will not be
  339.           executed.
  340.  
  341.      -    yymore() tells the scanner that the next time it matches a rule,
  342.           the corresponding token should be appended onto the current value
  343.           of yytext rather than replacing it.
  344.  
  345.      -    yyless(n) returns all but the first n characters of the current
  346.           token back to the input stream, where they will be rescanned when
  347.           the scanner looks for the next match.  yytext and yyleng are
  348.           adjusted appropriately (e.g., yyleng will now be equal to n ).
  349.  
  350.      -    unput(c) puts the character c back onto the input stream.  It will
  351.           be the next character scanned.
  352.  
  353.      -    input() reads the next character from the input stream (this rou-
  354.           tine is called yyinput() if the scanner is compiled using C++).
  355.  
  356.      -    yyterminate() can be used in lieu of a return statement in an
  357.           action.  It terminates the scanner and returns a 0 to the scanner's
  358.           caller, indicating "all done".
  359.  
  360.           By default, yyterminate() is also called when an end-of-file is
  361.           encountered.  It is a macro and may be redefined.
  362.  
  363.      -    YY_NEW_FILE is an action available only in <<EOF>> rules.  It means
  364.           "Okay, I've set up a new input file, continue scanning".
  365.  
  366.      -    yy_create_buffer( file, size ) takes a FILE pointer and an integer
  367.           size. It returns a YY_BUFFER_STATE handle to a new input buffer
  368.           large enough to accomodate size characters and associated with the
  369.           given file.  When in doubt, use YY_BUF_SIZE for the size.
  370.  
  371.      -    yy_switch_to_buffer( new_buffer ) switches the scanner's processing
  372.           to scan for tokens from the given buffer, which must be a
  373.           YY_BUFFER_STATE.
  374.  
  375.      -    yy_delete_buffer( buffer ) deletes the given buffer.
  376.  
  377.    VALUES AVAILABLE TO THE USER
  378.  
  379.      -    char *yytext holds the text of the current token.  It may not be
  380.           modified.
  381.  
  382.      -    int yyleng holds the length of the current token.  It may not be
  383.           modified.
  384.  
  385.      -    FILE *yyin is the file which by default flex reads from.  It may be
  386.           redefined but doing so only makes sense before scanning begins.
  387.           Changing it in the middle of scanning will have unexpected results
  388.           since flex buffers its input.  Once scanning terminates because an
  389.           end-of-file has been seen, void yyrestart( FILE *new_file ) may be
  390.           called to point yyin at the new input file.
  391.  
  392.  
  393.    6                                                              Version 2.3
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.    26 May 1990                                                        FLEX(1)
  401.  
  402.  
  403.      -    FILE *yyout is the file to which ECHO actions are done.  It can be
  404.           reassigned by the user.
  405.  
  406.      -    YY_CURRENT_BUFFER returns a YY_BUFFER_STATE handle to the current
  407.           buffer.
  408.  
  409.    MACROS THE USER CAN REDEFINE
  410.  
  411.      -    YY_DECL controls how the scanning routine is declared.  By default,
  412.           it is "int yylex()", or, if prototypes are being used, "int
  413.           yylex(void)".  This definition may be changed by redefining the
  414.           "YY_DECL" macro.  Note that if you give arguments to the scanning
  415.           routine using a K&R-style/non-prototyped function declaration, you
  416.           must terminate the definition with a semi-colon (;).
  417.  
  418.      -    The nature of how the scanner gets its input can be controlled by
  419.           redefining the YY_INPUT macro.  YY_INPUT's calling sequence is
  420.           "YY_INPUT(buf,result,max_size)".  Its action is to place up to
  421.           max_size characters in the character array buf and return in the
  422.           integer variable result either the number of characters read or the
  423.           constant YY_NULL (0 on Unix systems) to indicate EOF.  The default
  424.           YY_INPUT reads from the global file-pointer "yyin".  A sample rede-
  425.           finition of YY_INPUT (in the definitions section of the input
  426.           file):
  427.  
  428.               %{
  429.               #undef YY_INPUT
  430.               #define YY_INPUT(buf,result,max_size) \
  431.                   { \
  432.                   int c = getchar(); \
  433.                   result = (c == EOF) ? YY_NULL : (buf[0] = c, 1); \
  434.                   }
  435.               %}
  436.  
  437.  
  438.      -    When the scanner receives an end-of-file indication from YY_INPUT,
  439.           it then checks the yywrap() function.  If yywrap() returns false
  440.           (zero), then it is assumed that the function has gone ahead and set
  441.           up yyin to point to another input file, and scanning continues.  If
  442.           it returns true (non-zero), then the scanner terminates, returning
  443.           0 to its caller.
  444.  
  445.           The default yywrap() always returns 1.  Presently, to redefine it
  446.           you must first "#undef yywrap", as it is currently implemented as a
  447.           macro.  It is likely that yywrap() will soon be defined to be a
  448.           function rather than a macro.
  449.  
  450.      -    YY_USER_ACTION can be redefined to provide an action which is
  451.           always executed prior to the matched rule's action.
  452.  
  453.      -    The macro YY_USER_INIT may be redefined to provide an action which
  454.           is always executed before the first scan.
  455.  
  456.      -    In the generated scanner, the actions are all gathered in one large
  457.  
  458.  
  459.    Version 2.3                                                              7
  460.  
  461.  
  462.  
  463.  
  464.  
  465.  
  466.    FLEX(1)                                                        26 May 1990
  467.  
  468.  
  469.           switch statement and separated using YY_BREAK, which may be rede-
  470.           fined.  By default, it is simply a "break", to separate each rule's
  471.           action from the following rule's.
  472.  
  473.    FILES
  474.  
  475.      flex.skel
  476.           skeleton scanner.
  477.  
  478.      lex.yy.c
  479.           generated scanner (called lexyy.c on some systems).
  480.  
  481.      lex.backtrack
  482.           backtracking information for -b flag (called lex.bck on some sys-
  483.           tems).
  484.  
  485.      -lfl library with which to link the scanners.
  486.  
  487.    SEE ALSO
  488.  
  489.      flexdoc(1), lex(1), yacc(1), sed(1), awk(1).
  490.  
  491.      M. E. Lesk and E. Schmidt, LEX - Lexical Analyzer Generator
  492.  
  493.    DIAGNOSTICS
  494.      reject_used_but_not_detected undefined or
  495.  
  496.      yymore_used_but_not_detected undefined - These errors can occur at com-
  497.      pile time.  They indicate that the scanner uses REJECT or yymore() but
  498.      that flex failed to notice the fact, meaning that flex scanned the first
  499.      two sections looking for occurrences of these actions and failed to find
  500.      any, but somehow you snuck some in (via a #include file, for example).
  501.      Make an explicit reference to the action in your flex input file.  (Note
  502.      that previously flex supported a %used/%unused mechanism for dealing
  503.      with this problem; this feature is still supported but now deprecated,
  504.      and will go away soon unless the author hears from people who can argue
  505.      compellingly that they need it.)
  506.  
  507.      flex scanner jammed - a scanner compiled with -s has encountered an
  508.      input string which wasn't matched by any of its rules.
  509.  
  510.      flex input buffer overflowed - a scanner rule matched a string long
  511.      enough to overflow the scanner's internal input buffer (16K bytes - con-
  512.      trolled by YY_BUF_MAX in "flex.skel").
  513.  
  514.      scanner requires -8 flag - Your scanner specification includes recogniz-
  515.      ing 8-bit characters and you did not specify the -8 flag (and your site
  516.      has not installed flex with -8 as the default).
  517.  
  518.      fatal flex scanner internal error--end of buffer missed - This can occur
  519.      in an scanner which is reentered after a long-jump has jumped out (or
  520.      over) the scanner's activation frame.  Before reentering the scanner,
  521.      use:
  522.  
  523.  
  524.  
  525.    8                                                              Version 2.3
  526.  
  527.  
  528.  
  529.  
  530.  
  531.  
  532.    26 May 1990                                                        FLEX(1)
  533.  
  534.  
  535.          yyrestart( yyin );
  536.  
  537.  
  538.      too many %t classes! - You managed to put every single character into
  539.      its own %t class.  flex requires that at least one of the classes share
  540.      characters.
  541.  
  542.    AUTHOR
  543.      Vern Paxson, with the help of many ideas and much inspiration from Van
  544.      Jacobson.  Original version by Jef Poskanzer.
  545.  
  546.      See flexdoc(1) for additional credits and the address to send comments
  547.      to.
  548.  
  549.    DEFICIENCIES / BUGS
  550.  
  551.      Some trailing context patterns cannot be properly matched and generate
  552.      warning messages ("Dangerous trailing context").  These are patterns
  553.      where the ending of the first part of the rule matches the beginning of
  554.      the second part, such as "zx*/xy*", where the 'x*' matches the 'x' at
  555.      the beginning of the trailing context.  (Note that the POSIX draft
  556.      states that the text matched by such patterns is undefined.)
  557.  
  558.      For some trailing context rules, parts which are actually fixed-length
  559.      are not recognized as such, leading to the abovementioned performance
  560.      loss.  In particular, parts using '|' or {n} (such as "foo{3}") are
  561.      always considered variable-length.
  562.  
  563.      Combining trailing context with the special '|' action can result in
  564.      fixed trailing context being turned into the more expensive variable
  565.      trailing context.  For example, this happens in the following example:
  566.  
  567.          %%
  568.          abc      |
  569.          xyz/def
  570.  
  571.  
  572.      Use of unput() invalidates yytext and yyleng.
  573.  
  574.      Use of unput() to push back more text than was matched can result in the
  575.      pushed-back text matching a beginning-of-line ('^') rule even though it
  576.      didn't come at the beginning of the line (though this is rare!).
  577.  
  578.      Pattern-matching of NUL's is substantially slower than matching other
  579.      characters.
  580.  
  581.      flex does not generate correct #line directives for code internal to the
  582.      scanner; thus, bugs in flex.skel yield bogus line numbers.
  583.  
  584.      Due to both buffering of input and read-ahead, you cannot intermix calls
  585.      to <stdio.h> routines, such as, for example, getchar(), with flex rules
  586.      and expect it to work.  Call input() instead.
  587.  
  588.  
  589.  
  590.  
  591.    Version 2.3                                                              9
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.    FLEX(1)                                                        26 May 1990
  599.  
  600.  
  601.      The total table entries listed by the -v flag excludes the number of
  602.      table entries needed to determine what rule has been matched.  The
  603.      number of entries is equal to the number of DFA states if the scanner
  604.      does not use REJECT, and somewhat greater than the number of states if
  605.      it does.
  606.  
  607.      REJECT cannot be used with the -f or -F options.
  608.  
  609.      Some of the macros, such as yywrap(), may in the future become functions
  610.      which live in the -lfl library.  This will doubtless break a lot of
  611.      code, but may be required for POSIX-compliance.
  612.  
  613.      The flex internal algorithms need documentation.
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648.  
  649.  
  650.  
  651.  
  652.  
  653.  
  654.  
  655.  
  656.  
  657.    10                                                             Version 2.3
  658.  
  659.